home *** CD-ROM | disk | FTP | other *** search
- package icontrols.MaskedEdit;
-
- import com.ms.wd.core.Event;
-
- public final class ValidationErrorEvent extends Event {
- public static final int FIELD_FULL = 1;
- public static final int INVALID_CHARACTER = 2;
- public static final int END_OF_FIELD = 3;
- public static final int REQUIRED_CHARACTER = 4;
- public static final int PARSE_ERROR = 5;
- // $FF: renamed from: id int
- public int field_0;
- public int position;
-
- public ValidationErrorEvent(int id, int position) {
- this.field_0 = id;
- this.position = position;
- }
- }
-